home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue35
/
clinic
/
BmpUser.dpr
next >
Wrap
Text File
|
1998-03-11
|
219b
|
16 lines
program BmpUser;
uses
Forms,
BmpUserU in 'BmpUserU.pas' {Form1};
{$R *.RES}
begin
{$ifdef Win32}
Application.Initialize;
{$endif}
Application.CreateForm(TForm1, Form1);
Application.Run;
end.